home *** CD-ROM | disk | FTP | other *** search
- { WindTest, WindInst typed constants (TC) }
-
- UNIT WindGlob;
-
- INTERFACE
-
- USES Crt;
-
- CONST
-
- CBase : String[7] = '@CBASE@'; { Mark beginning of TC area }
-
- {----- Start of default typed-constants area }
-
- WBForeColor : Word = Blue; { Border foreground color }
- WBBackColor : Word = LightGray; { Border background color }
- WTForeColor : Word = Yellow; { Text foreground color }
- WTBackColor : Word = Blue; { Text background color }
- WTitle : String[40] = ' Test Window '; { Window title }
-
- {----- End of default typed-constants area }
-
- EBase : Char = '!'; { Mark end of TC area }
-
-
- IMPLEMENTATION
-
- { No code in this unit }
-
- END.
-
-